home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ Yahoo Messenger 7.xpl < prev    next >
Text File  |  2001-11-27  |  1KB  |  33 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Instant Messaging\Yahoo Messenger"
  5. "NAME"="Y! Menu Title"
  6. "VERSION"="1.01"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Y! Menu Title"
  9. "DESCRIPTION 1"="You can change the title of the Y! menu in Yahoo Messenger here."
  10. "DESCRIPTION 2"="NOTE #1: If you have Yahoo! Messenger open at the moment, you will need to close it so that the changes can take effect."
  11. "DESCRIPTION 3"="NOTE #2: This option does not work with the new Yahoo! Messenger 4.x."
  12. "DESCRIPTION 4"="Yahoo! Messenger may be obtained at http://messenger.yahoo.com/."
  13. "AUTHOR"="Xteq Systems (Neil R. Turner)"
  14. "CONTACTURL"="http://www.xteq.com/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="Fed up with Yahoo!? Try http://dmoz.org/."
  17.  
  18. sP="HKCR\TypeLib\{F0012D80-989C-11D3-B7C5-0090271D5CA7}\3.0\HELPDIR\@"
  19.  
  20. Sub Plugin_Initialize
  21.  s=RegReadValue(sP)
  22.  t=IniReadValue(s & "\cobrand.ini","COBRAND","Menu Caption")
  23.  Call SetUIElement(1,t)
  24. End Sub
  25.  
  26. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  27.  t=GetUIElement(1)
  28.  s=RegReadValue(sP)
  29.  Call IniWriteValue(s & "\cobrand.ini","COBRAND","Menu Caption",t)
  30. End Sub
  31.  
  32. Sub Plugin_Terminate 
  33. End Sub